From 2757020051907404af363172bd5b8afb9cd72ef7 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 13 May 2016 19:56:11 -0400 Subject: [PATCH] Reword to not call a non-rust-tuple thing a tuple --- src/doc/specifying-dependencies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/specifying-dependencies.md b/src/doc/specifying-dependencies.md index c6dd3cffd..8abb06533 100644 --- a/src/doc/specifying-dependencies.md +++ b/src/doc/specifying-dependencies.md @@ -28,7 +28,7 @@ if we had specified `"^0.1.12"`, which is called a caret requirement. **Caret requirements** allow SemVer compatible updates to a specified version. An update is allowed if the new version number does not modify the left-most -non-zero digit in the [major, minor, patch] tuple. In this case, if we ran +non-zero digit in the major, minor, patch grouping. In this case, if we ran `cargo update -p time`, cargo would update us to version `0.1.13` if it was available, but would not update us to `0.2.0`. If instead we had specified the version string as `^1.0`, cargo would update to `1.1` but not `2.0`. `0.0.x` is -- 2.30.2